iT邦幫忙

2023 iThome 鐵人賽

DAY 3
0
SideProject30

桌球王系列 第 3

Day 3 : UI

  • 分享至 

  • xImage
  •  

Day 3 - UI

Create React App

create-react-app.dev

npx create-react-app ttk
cd ttk
npm start

https://ithelp.ithome.com.tw/upload/images/20230918/201115162P0x4ZiLLE.png

UI component

  • Ant Design: Table,Button
  • Code:
import './App.css';
import { Table,Button} from 'antd';

function App() {
  const columns = [
    {
      title: 'No#',
      dataIndex: 'no',
      key: 'no'
      
    },
    {
      title: 'Name',
      dataIndex: 'name',
      key: 'name'
    },
    {
      title: 'Action',
      dataIndex: 'action',
      key: 'action'
    }
  ];
  const data = [
    
  ];    
  return (
    <div className="App">
      
      
        <Button type="primary">+1 Player</Button>
        <Button style={{marginLeft:6}}>+2 Player</Button>
      
      <br/><br/>
      <Table columns={columns} dataSource={data} />

    </div>
  );
}

export default App;

畫面

https://ithelp.ithome.com.tw/upload/images/20230918/201115163uThbfXY8g.png


上一篇
Day 2 : Frontend
下一篇
Day 4 - 淺談 CSS
系列文
桌球王30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言